home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / fortran / fckdemo1.zip / LOCALARG.LST < prev    next >
File List  |  1994-04-12  |  2KB  |  69 lines

  1.  FORCHECK PC V11.10  MS5 compiler emulation  02-Feb-94  11:11:14  page: 1
  2.  LOCALARG.FOR  
  3.  
  4.  
  5.       1 c
  6.       2 c                       FORCHECK
  7.       3 c               Local Verification of Arguments
  8.       4 
  9.       5         INTEGER iar(10)
  10.       6 
  11.       7         CALL sub1(i, j)
  12.       8         CALL sub1(i)
  13.    SUB1                            
  14.  **[274 E] number of arguments inconsistent with first occurrence
  15.       9         CALL sub1(r, 1)
  16.      10 
  17.    SUB1, argument no  1
  18.  **[284 E] data type inconsistent with first occurrence (int/real)
  19.      11         CALL sub2(iar)
  20.      12         CALL sub2(i)
  21.    SUB2, argument no  1
  22.  **[294 E] array vs (scalar, expression, or constant) conflict
  23.      13         CALL sub2(1)
  24.      14 
  25.    SUB2, argument no  1
  26.  **[294 E] array vs (scalar, expression, or constant) conflict
  27.      15         END
  28.  
  29.  FORCHECK PC V11.10          .MAIN.          02-Feb-94  11:11:14  page: 2
  30.  LOCALARG.FOR  
  31.  
  32.  
  33.  ENTRY          TYPE NARG  LINE
  34.  
  35.     .MAIN.         P
  36.  
  37.  
  38.  VARIABLE  TYPE     RANK  OPERATIONS  LINES
  39.  
  40.     I       I*4                   S    7   8  12
  41.     IAR     I*4       1           S    5  11
  42.     J       I*4                   S    7
  43.     R       R*4                   S    9
  44.  
  45.  
  46.  SUBPROGRAM     TYPE NARG OPERATIONS  LINES
  47.  
  48.     SUB1           S  2                7   8   9
  49.     SUB2           S  1               11  12  13
  50.  
  51.  FORCHECK PC V11.10  MS5 compiler emulation  02-Feb-94  11:11:14  page: 3
  52.  
  53.  
  54.  *END OF ANALYSIS*
  55.  
  56.  messages presented:
  57.     1x[274 E] number of arguments inconsistent with first occurrence
  58.     1x[284 E] data type inconsistent with first occurrence (int/real)
  59.     2x[294 E] array vs (scalar, expression, or constant) conflict
  60.  
  61.  number of error messages:                4
  62.  
  63.                                       total  not-included
  64.  number of noncomment source lines:       8             8
  65.  number of nonempty comment lines:        2             2
  66.  number of statements:                    8             8
  67.  number of subprograms:                   1
  68.  number of source files:                  1
  69.